home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19970326-19970626 / 000138_news@columbia.edu _Fri Apr 25 14:15:27 1997.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Return-Path: <news@columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.35.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id OAA05922
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Fri, 25 Apr 1997 14:15:26 -0400 (EDT)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id OAA09569
  7.     for kermit.misc@watsun; Fri, 25 Apr 1997 14:15:25 -0400 (EDT)
  8. Path: news.columbia.edu!sol.ctr.columbia.edu!news.msfc.nasa.gov!news.maxwell.syr.edu!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  9. From: jrd@cc.usu.edu (Joe Doupnik)
  10. Newsgroups: comp.protocols.kermit.misc
  11. Subject: Re: File transfer confirmation
  12. Message-ID: <1997Apr25.115758.97416@cc.usu.edu>
  13. Date: 25 Apr 97 11:57:58 MDT
  14. References: <01bc5024$31423ac0$35c348c2@sbw>
  15. Organization: Utah State University
  16. Lines: 16
  17. Xref: news.columbia.edu comp.protocols.kermit.misc:6957
  18.  
  19. In article <01bc5024$31423ac0$35c348c2@sbw>, "Shaun Watters" <sbw@enterprise.net> writes:
  20. > Can anyone tell me if it's possible to have Kermit confirm files for
  21. > transfer, if using a wildcard get. (i.e. GET *.SCR   -  is it possible for
  22. > Kermit to prompt you for a yes or no as to wether to send this file or not.
  23. ----------
  24.     No. Let me explain because the Kermit protocol is unlike FTP.
  25. You can say SET FILE COLLISION ? to see what options are available
  26. when receiving a new file with the same name as an existing one. Option
  27. DISCARD rejects the new version, OVERWRITE accepts the new, and so on.
  28.     TCP sends a complete list of files to the client, which is quite
  29. a memory problem, and then the client requests each file in turn from that
  30. list. In the middle of that operation the client can prompt you yes or no. 
  31. The Kermit protocol avoids such lists and the file sender decides which file
  32. to send, one after the other, and the name of each is sent with each file. 
  33. Thus the file sender is the only agent knowing which file will be sent next.
  34.     Joe D.